home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / rt800 / src / argv.awk < prev    next >
Text File  |  1990-02-07  |  101b  |  4 lines

  1. # print all the command line arguments of the program
  2.  
  3. BEGIN { for (i in ARGV) print i, ARGV[i] }
  4.